information gain

Terms from Artificial Intelligence: humans at the heart of algorithms

The glossary is being gradually proof checked, but currently has many typos and misspellings.

Information gain is an information measure used in decision tree building algorithms, notably ID3. Given a classification set C and a feature or decsion formula that creates a grouping set G
      gain(C,G)   =   Σc,g pc,glog2pc,g   −   Σc pclog2pc
where pc is the frequency of items of class c in the data and pc,g is the frequency of items of class c and in grouping g.